3480d328
@@ -46,7 +46,7 @@
public class HandleFaultProcessor extends DelegateProcessor implements AsyncProc
             return ((AsyncProcessor)processor).process(exchange, new AsyncCallback() {
                 
                 public void done(boolean doneSynchronously) {
-                    callback.done(doneSynchronously);
+                    // Take the fault message out before we keep on going                    
                     Message faultMessage = exchange.getFault(false);
                     if (faultMessage != null) {
                         final Object faultBody = faultMessage.getBody();
@@ -59,7 +59,8 @@
public class HandleFaultProcessor extends DelegateProcessor implements AsyncProc
                                     + faultBody.getClass().getName() + ":\n" + faultBody));
                             }
                         }
-                    }                    
+                    }
+                    callback.done(doneSynchronously);
                 }                
             });
         }
